home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / os2 / inadv023.zip / helloscr.cmd < prev    next >
OS/2 REXX Batch file  |  1996-05-25  |  526b  |  21 lines

  1. /*
  2. **
  3. ** HELLOSCR.CMD - Sample REXX script which is executed from IRC by typing
  4. **                /scr helloscr.cmd <nickname> [text]
  5. */
  6. Parse Arg WinHandle OurNick Parm1 Parms
  7.  
  8. if (Parm1 <> '') then do
  9.    if (Parms <> '') then do
  10.       str = "/MSG" Parm1 Parms
  11.    end
  12.    else do
  13.       str = "/MSG" Parm1 "Greetings from" OurNick
  14.    end
  15.    IrcRexxDisplay("Hello message sent to" Parm1, WinHandle);
  16.    IrcRexxCommand(str, WinHandle);
  17. end
  18. else do
  19.    IrcRexxDisplay("*** Missing nickname ***", WinHandle)
  20. end
  21.